/-boot
/-docs ...
/-docs/CodeMirrorServices
DocumentState.ts
EditorPool.ts
/-docs/api ...
Document.ts
Document_Storage.ts
Document_Type.ts
Drive.ts
Folder.ts
/-editor
CodeMirrorEditor.ts
CompletionCodeMirrorEditor.ts
CssEditorType.ts
Editor.ts
EditorType.ts
HtmlEditorType.ts
JavaScriptEditorType.ts
TypeScriptEditorType.ts
x-last-PlainTextEditorType.ts
/-files
/-files-old
/-imports
/-layout
/-storage
/-tests
/-typings
Dom.ts
TypeScriptService.ts
functions.ts
ko.ts
nteapo.html
persistence.api.ts
persistence.ts
shell.ts
teapo.html
teapo.ts
try.html
try.js
x
 
1
module teapo.docs {
2
// рост
3
  export interface Document {
4
5
    iconClass(): string;
6
    
7
    open(): HTMLElement;
8
    close(): void;
9
    
10
  }
11
12
}
1:7